function webdeveloper_informationalDialog(title, message)
{
var checkBox = {value: false};
var promptServiceInterface = Components.interfaces.nsIPromptService;
var stringBundle = document.getElementById("webdeveloper-string-bundle");
var result = Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(promptServiceInterface).alertCheck(null, title, message, stringBundle.getString("webdeveloper_stopInformational"), checkBox);